HTMLify
style.css
Views: 12 | Author: huxn-webdev
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | * { box-sizing: border-box; } body { background-color: rgb(14, 13, 13); display: flex; justify-content: center; align-items: center; height: 100vh; overflow: hidden; margin: 0; } .empty { height: 200px; width: 200px; margin: 10px; border: 3px solid white; background: white; } .fill { /* background-image: url("http://source.unsplash.com/random/200x200"); */ background-image: url("natali-hordiiuk-DTYJck7Amm8-unsplash.jpg"); background-position: center; background-size: cover; height: 195px; width: 195px; cursor: pointer; } /* JavaScript */ .hovered { background-color: green; border: 3px dashed white; } @media (max-width: 800px) { body { flex-direction: column; } } |